🎨 HRMS Custom Icon System

Modern, consistent SVG icons with 1.75 stroke width and 24x24 viewBox

Icon Sizes

Sizes: icon-xs (14px) | icon-sm (16px) | icon-md (20px) | icon-lg (24px) | icon-xl (28px) | icon-2xl (32px)

Icon Colors

Sample Icons

user
users
edit
delete
add-circle
check-circle
clock
calendar
money
chart-bar
bell
settings

Usage in PHP

// Get icon HTML
echo HRM_Icons::get('user');
echo HRM_Icons::get('edit', ['size' => 'lg', 'color' => 'primary']);

// Icon with circle background
echo HRM_Icons::get_circle('check', 'success');

// Icon with gradient box
echo HRM_Icons::get_box('money', 'primary');

// Convert from dashicons
echo HRM_Icons::from_dashicons('dashicons-edit');